Example of floor method in python

28

import math
print(math.floor(48.25))
print(math.floor(45.98))
print(math.floor(-38.68))
print(math.floor(-24.99))

Comments

Submit
0 Comments